home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / gandy_sq.swf / scripts / DefineButton2_332 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2011-03-26  |  244 b   |  16 lines

  1. on(release){
  2.    if(music == 1)
  3.    {
  4.       stopAllSounds();
  5.       music = 0;
  6.    }
  7.    else
  8.    {
  9.       ss = new Sound();
  10.       ss.attachSound("musicsound");
  11.       ss.setVolume(100);
  12.       ss.start(0,999999);
  13.       music = 1;
  14.    }
  15. }
  16.